GtkImagePrivate: Improve struct packing
authorMatthias Clasen <mclasen@redhat.com>
Tue, 12 Apr 2011 16:33:45 +0000 (12:33 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 12 Apr 2011 16:33:45 +0000 (12:33 -0400)
gtk/gtkimage.c

index 25d4173c4ffa03a63ae854ac22eee686632f98f3..a755635d801c79c58a193138bb0b934f870a9c25 100644 (file)
@@ -145,7 +145,6 @@ struct _GtkImagePrivate
     GtkImageGIconData      gicon;
   } data;
 
-  gboolean              was_symbolic;
   gchar                *filename;       /* Only used with GTK_IMAGE_ANIMATION, GTK_IMAGE_PIXBUF */
   gint                  last_rendered_state;  /* a GtkStateFlags, with -1 meaning an invalid state,
                                                * only used with GTK_IMAGE_GICON, GTK_IMAGE_ICON_NAME */
@@ -153,7 +152,8 @@ struct _GtkImagePrivate
   gint                  required_width;
   gint                  required_height;
   guint                 need_calc_size : 1;
-  guint                 use_fallback : 1;
+  guint                 use_fallback   : 1;
+  guint                 was_symbolic   : 1;
 };